home *** CD-ROM | disk | FTP | other *** search
- package sun.net.www.protocol.http;
-
- import java.net.URL;
- import java.net.URLConnection;
- import java.net.URLStreamHandler;
-
- public class Handler extends URLStreamHandler {
- protected String proxy;
- protected int proxyPort;
-
- public Handler() {
- this.proxy = null;
- this.proxyPort = -1;
- }
-
- public Handler(String var1, int var2) {
- this.proxy = var1;
- this.proxyPort = var2;
- }
-
- protected URLConnection openConnection(URL var1) {
- return new HttpURLConnection(var1, this);
- }
- }
-